home *** CD-ROM | disk | FTP | other *** search
- on windowsSaveDialog
- global gSysPath, gSavePath, gfd, gWinSavePath
- gSavePath = FileSaveAsDialog(gWinSavePath, "Stuart Little 2 Images", "Save Images to what Location ?", 0)
- if gSavePath = EMPTY then
- puppetTransition(49, 2)
- go(244)
- else
- the itemDelimiter = "\"
- z = the number of items in gSavePath
- put "Stuart Little 2 Images" into item z of gSavePath
- the itemDelimiter = ","
- save = the itemDelimiter
- end if
- end
-
- on macSAveDialog
- global gSysPath, gSavePath, gfd, gmacSavePath
- gSavePath = FileSaveAsDialog(gmacSavePath, "Stuart Little 2 Images", "Save Images to what Location ?")
- if gSavePath = EMPTY then
- puppetTransition(49, 2)
- go(244)
- else
- the itemDelimiter = ":"
- z = the number of items in gSavePath
- put "Stuart Little 2 Images" into item z of gSavePath
- the itemDelimiter = ","
- save = the itemDelimiter
- end if
- end
-
- on exitFrame me
- global gfd
- if gfd = "\" then
- windowsSaveDialog()
- else
- macSAveDialog()
- end if
- end
-